home *** CD-ROM | disk | FTP | other *** search
/ Gear Audio / Gear Audio CD-ROM.iso / csav / ntserver / netdisk.bat < prev    next >
Encoding:
DOS Batch File  |  1999-02-21  |  1.5 KB  |  76 lines

  1. @ECHO OFF
  2. REM This batch file copies the files from a four disk set to the
  3. REM Network directory.
  4. CLS
  5. ECHO This batch file performs the appropriate steps necessary to
  6. ECHO place the CSAV files on one disk usually the network.
  7. ECHO.
  8. ECHO Please execute this file from the directory and drive where you want
  9. ECHO the CSAV files to be. If you want the CSAV files in F:\F-PROT
  10. ECHO type: COPY %0.BAT F:\F-PROT. Then goto that directory and type:
  11. ECHO.
  12. ECHO    %0 [Drive and directory where CSAV files are located]
  13. ECHO    Example: %0 A:
  14. ECHO             %0 A:\F-PROT
  15. ECHO.
  16. ECHO Note:Please end the subdirectory without the backslash; it is added in
  17. ECHO      the batch file.
  18. ECHO.
  19. ECHO Press CTRL-C to end or
  20. PAUSE
  21. IF '%1'=='' GOTO SYNTAX
  22.  
  23. :1DISK
  24. CLS
  25. IF EXIST %1\SETUP.EXE GOTO 1DISKCOPY
  26. ECHO Please place disk#1 in the drive then
  27. PAUSE
  28. GOTO 1DISK
  29.  
  30. :1DISKCOPY
  31. COPY %1\*.*
  32.  
  33. :2DISK
  34. IF EXIST %1\FPNT.CSS GOTO 2DISKCOPY
  35. ECHO Please place disk#2 in the drive then
  36. PAUSE
  37. GOTO 2DISK
  38.  
  39. :2DISKCOPY
  40. COPY %1\*.*
  41.  
  42. :3DISK
  43. IF EXIST %1\HPNT.CSS GOTO 3DISKCOPY
  44. ECHO Please place disk#3 in the drive then
  45. PAUSE
  46. GOTO 3DISK
  47.  
  48. :3DISKCOPY
  49. COPY %1\*.*
  50.  
  51. :4DISK
  52. IF EXIST %1\Fprotnt.CSS GOTO 4DISKCOPY
  53. ECHO Please place disk#4 in the drive then
  54. PAUSE
  55. GOTO 4DISK
  56.  
  57. :4DISKCOPY
  58. COPY %1\*.*
  59.  
  60. ECHO.
  61. ECHO Transfer Complete...
  62. ECHO.
  63. GOTO END
  64.  
  65. :SYNTAX
  66. ECHO SYNTAX ERROR:A source path is needed.
  67. ECHO e.g. %0 A:
  68. GOTO END
  69.  
  70. :ERROR
  71. ECHO Please call Tech Support at 1-800-423-9147
  72. ECHO.
  73. ECHO.
  74.  
  75. :END
  76.